home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / gconf2-common.postrm < prev    next >
Text File  |  2009-10-07  |  367b  |  19 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ "$1" = "purge" ];then
  6.     if [ -x /usr/bin/ucf ]; then
  7.         ucf --purge /etc/gconf/2/path
  8.     fi
  9.     if [ -d /etc/gconf/2 ]; then
  10.         rm -f /etc/gconf/2/path
  11.         rmdir -p --ignore-fail-on-non-empty /etc/gconf/2
  12.     fi
  13.     rm -rf /var/lib/gconf
  14.     rm -rf /etc/gconf/gconf.xml.mandatory
  15.     rm -rf /etc/gconf/gconf.xml.defaults
  16. fi
  17.  
  18.  
  19.